home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / mui / mui_requesta.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-30  |  474 b   |  26 lines

  1. #ifdef __GNUC__
  2.  
  3. #ifndef __OPTIMIZE__
  4. #error Please compile this file with -O
  5. #else
  6.  
  7. #define MUI_RequestA InlinedMUI_RequestA
  8. #include <inline/muimaster.h>
  9. #undef MUI_RequestA
  10.  
  11. LONG MUI_RequestA(Object *Application,
  12.           Object *TheWindow,
  13.           LONGBITS Flags,
  14.           const char *Title,
  15.           const char *Gadgets,
  16.           const char *FormatString,
  17.           const APTR Params)
  18.  
  19. {
  20.   return InlinedMUI_RequestA(Application,TheWindow,Flags,Title,Gadgets,FormatString,Params);
  21. }
  22.  
  23. #endif
  24.  
  25. #endif
  26.